mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
aws-lambda-builders: 0.8.0 -> 0.9.0
This commit is contained in:
parent
b2aa673d5a
commit
2fea6a2a64
@ -2,22 +2,24 @@
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, six
|
||||
, pathlib
|
||||
, pytest
|
||||
, mock
|
||||
, parameterized
|
||||
, isPy27
|
||||
, isPy35
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aws-lambda-builders";
|
||||
version = "0.8.0";
|
||||
version = "0.9.0";
|
||||
|
||||
# No tests available in PyPI tarball
|
||||
src = fetchFromGitHub {
|
||||
owner = "awslabs";
|
||||
repo = "aws-lambda-builders";
|
||||
rev = "v${version}";
|
||||
sha256 = "1akiv92cd7ciky0aay94lh9azr73jajn0x0x6ywaf3qm5c4hyvys";
|
||||
sha256 = "0cgb0hwf4xg5dmm32wwlxqy7a77jw6gpnj7v8rq5948hsy2sfrcp";
|
||||
};
|
||||
|
||||
# Package is not compatible with Python 3.5
|
||||
@ -25,7 +27,7 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
];
|
||||
] ++ lib.optionals isPy27 [ pathlib ];
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
|
Loading…
Reference in New Issue
Block a user