mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
47 lines
944 B
Nix
47 lines
944 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, boto3
|
|
, six
|
|
, pyyaml
|
|
, mock
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "serverlessrepo";
|
|
version = "0.1.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "671f48038123f121437b717ed51f253a55775590f00fbab6fbc6a01f8d05c017";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
boto3
|
|
pyyaml
|
|
];
|
|
|
|
checkInputs = [ pytest mock ];
|
|
|
|
checkPhase = ''
|
|
pytest tests/unit
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pyyaml~=3.12" "pyyaml~=5.1"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/awslabs/aws-serverlessrepo-python";
|
|
description = "Helpers for working with the AWS Serverless Application Repository";
|
|
longDescription = ''
|
|
A Python library with convenience helpers for working with the
|
|
AWS Serverless Application Repository.
|
|
'';
|
|
license = lib.licenses.asl20;
|
|
maintainers = with maintainers; [ dhkl ];
|
|
};
|
|
}
|