My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pathtools/default.nix

22 lines
485 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pathtools";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "1h7iam33vwxk8bvslfj4qlsdprdnwf8bvzhqh3jq5frr391cadbw";
};
meta = with lib; {
description = "Pattern matching and various utilities for file systems paths";
homepage = "https://github.com/gorakhargosh/pathtools";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
};
}