forked from mirrors/nixpkgs
Merge pull request #53422 from leenaars/bang
pythonPackages.dockerfile-parse: init at 0.0.13
This commit is contained in:
commit
2e76e35df6
26
pkgs/development/python-modules/dockerfile-parse/default.nix
Normal file
26
pkgs/development/python-modules/dockerfile-parse/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchPypi, six, pytestcov, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.0.13";
|
||||||
|
pname = "dockerfile-parse";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1p0x81q3m3nlj4rqal9a959xcbjhncb548wd4wr3l7dpiajqqc9c";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
echo " " > tests/requirements.txt \
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkInputs = [ pytestcov pytest ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Python library for parsing Dockerfile files";
|
||||||
|
homepage = https://github.com/DBuildService/dockerfile-parse;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ leenaars ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1745,6 +1745,8 @@ in {
|
||||||
|
|
||||||
docker = callPackage ../development/python-modules/docker {};
|
docker = callPackage ../development/python-modules/docker {};
|
||||||
|
|
||||||
|
dockerfile-parse = callPackage ../development/python-modules/dockerfile-parse {};
|
||||||
|
|
||||||
docker-py = disabledIf isPy27 (callPackage ../development/python-modules/docker-py {});
|
docker-py = disabledIf isPy27 (callPackage ../development/python-modules/docker-py {});
|
||||||
|
|
||||||
dockerpty = callPackage ../development/python-modules/dockerpty {};
|
dockerpty = callPackage ../development/python-modules/dockerpty {};
|
||||||
|
|
Loading…
Reference in a new issue