mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
pythonPackages.pymacaroons: init at 0.13.0
This commit is contained in:
parent
2d6f84c109
commit
95f434366b
25
pkgs/development/python-modules/pymacaroons/default.nix
Normal file
25
pkgs/development/python-modules/pymacaroons/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, six, pynacl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymacaroons";
|
||||
version = "0.13.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
pynacl
|
||||
];
|
||||
|
||||
# Tests require an old version of hypothesis
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Macaroon library for Python";
|
||||
homepage = https://github.com/ecordell/pymacaroons;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -4738,6 +4738,8 @@ in {
|
||||
|
||||
pymacaroons-pynacl = callPackage ../development/python-modules/pymacaroons-pynacl { };
|
||||
|
||||
pymacaroons = callPackage ../development/python-modules/pymacaroons { };
|
||||
|
||||
pynacl = callPackage ../development/python-modules/pynacl { };
|
||||
|
||||
service-identity = callPackage ../development/python-modules/service_identity { };
|
||||
|
Loading…
Reference in New Issue
Block a user