depot/third_party/nixpkgs/pkgs/development/python-modules/args/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

16 lines
373 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "args";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814";
};
meta = with lib; {
description = "Command Arguments for Humans";
homepage = "https://github.com/kennethreitz/args";
};
}