26 lines
666 B
Nix
26 lines
666 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, six, pytestcov, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.0.17";
|
|
pname = "dockerfile-parse";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a69d4ed44c4a890c16437327009ae59ec3a3afeb1abc3819d0c1b14a46099220";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|