1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 09:20:58 +03:00
nixpkgs/pkgs/development/python-modules/pathspec/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
514 B
Nix
Raw Normal View History

2017-09-06 18:42:51 +02:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pathspec";
version = "0.9.0";
2017-09-06 18:42:51 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1";
2017-09-06 18:42:51 +02:00
};
meta = {
description = "Utility library for gitignore-style pattern matching of file paths";
homepage = "https://github.com/cpburnz/python-path-specification";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ copumpkin ];
};
2020-08-25 12:07:09 +10:00
}