pythonPackages.pyhocon: fetch from github
This commit is contained in:
parent
d0f7540885
commit
382aec03a1
@ -1,6 +1,6 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchFromGitHub
|
||||||
# Runtime inputs:
|
# Runtime inputs:
|
||||||
, pyparsing
|
, pyparsing
|
||||||
# Check inputs:
|
# Check inputs:
|
||||||
@ -12,9 +12,11 @@ buildPythonPackage rec {
|
|||||||
pname = "pyhocon";
|
pname = "pyhocon";
|
||||||
version = "0.3.53";
|
version = "0.3.53";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "chimpler";
|
||||||
sha256 = "29d9b64d0141d202b77c18665dc4fcafc05fd4c1a4b0fd95ca57c8b58c0e6c2d";
|
repo = "pyhocon";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1lr56piiasnq1aiwli8ldw2wc3xjfck8az991mr5rdbqqsrh9vkv";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyparsing ];
|
propagatedBuildInputs = [ pyparsing ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user