pythonPackages.pymacaroons-pynacl: move expression
Tests are now explicitly disabled to fix the build for Python 3.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, pynacl, six }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymacaroons-pynacl";
|
||||
version = "0.9.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matrix-org";
|
||||
repo = "pymacaroons";
|
||||
rev = "v${version}";
|
||||
sha256 = "0bykjk01zdndp6gjr30x46blsn0cvxa7j0zh5g8raxwaawchjhii";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pynacl six ];
|
||||
|
||||
# Tests require an old version of hypothesis
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Macaroon library for Python";
|
||||
homepage = https://github.com/matrix-org/pymacaroons;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user