Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / dockerfile-parse / default.nix
blob45fe856f6f0d65f6b32a46bf7e49482fd4b2cb2b
1 { lib, buildPythonPackage, fetchPypi, six, pytestcov, pytest }:
3 buildPythonPackage rec {
4   version = "1.1.0";
5   pname = "dockerfile-parse";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f37bfa327fada7fad6833aebfaac4a3aaf705e4cf813b737175feded306109e8";
10   };
12   postPatch = ''
13     echo " " > tests/requirements.txt \
14   '';
16   propagatedBuildInputs = [ six ];
18   checkInputs = [ pytestcov pytest ];
20   meta = with lib; {
21     description = "Python library for parsing Dockerfile files";
22     homepage = "https://github.com/DBuildService/dockerfile-parse";
23     license = licenses.bsd3;
24     maintainers = with maintainers; [ leenaars ];
25   };