pythonPackages.pathtools: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 10:26:50 -04:00
committed by Frederik Rietdijk
parent 08890bd6ea
commit 592e8a2ef1
2 changed files with 23 additions and 16 deletions

View File

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