pythonPackages.credstash: fix build
This applies https://github.com/fugue/credstash/pull/178.
This commit is contained in:
parent
0b6a2b2037
commit
14ed0f5fe0
@ -1,15 +1,20 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils }:
|
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, cryptography, boto3, pyyaml, docutils }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "credstash";
|
pname = "credstash";
|
||||||
version = "1.14.0";
|
version = "1.14.0";
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "718b337f7a6fa001e014386071f05c59900525d0507009126d2fe8d75fe0761d";
|
sha256 = "718b337f7a6fa001e014386071f05c59900525d0507009126d2fe8d75fe0761d";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = fetchpatch {
|
||||||
|
url = https://github.com/fugue/credstash/pull/178.patch;
|
||||||
|
sha256 = "15ih4h5v63g7qfmqdl4zca147wkcrx8vnsh4ns33001dipcfb5sc";
|
||||||
|
excludes = [ ".travis.yml" ];
|
||||||
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];
|
propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];
|
||||||
|
|
||||||
# No tests in archive
|
# No tests in archive
|
||||||
|
Loading…
x
Reference in New Issue
Block a user