depot/third_party/nixpkgs/pkgs/tools/misc/pipreqs/default.nix
Default email 620eecebfb Project import generated by Copybara.
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
2021-10-28 08:52:43 +02:00

25 lines
619 B
Nix

{ lib, python3 }:
with python3.pkgs;
buildPythonApplication rec {
pname = "pipreqs";
version = "0.4.11";
src = fetchPypi {
inherit pname version;
sha256 = "c793b4e147ac437871b3a962c5ce467e129c859ece5ba79aca83c20f4d9c3aef";
};
propagatedBuildInputs = [ yarg docopt ];
# Tests requires network access. Works fine without sandboxing
doCheck = false;
meta = with lib; {
description = "Generate requirements.txt file for any project based on imports";
homepage = "https://github.com/bndr/pipreqs";
license = licenses.asl20;
maintainers = with maintainers; [ psyanticy ];
};
}