mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
python.pkgs.smmap2: remove
They were recently merged back together and smmap is the canonical version: https://github.com/gitpython-developers/smmap/issues/44
This commit is contained in:
parent
8eacb87061
commit
6c0fa331f0
|
@ -1,20 +0,0 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, nosexcover }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "smmap2";
|
||||
version = "2.0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "29a9ffa0497e7f2be94ca0ed1ca1aa3cd4cf25a1f6b4f5f87f74b46ed91d609a";
|
||||
};
|
||||
|
||||
checkInputs = [ nosexcover ];
|
||||
|
||||
meta = {
|
||||
description = "A pure python implementation of a sliding window memory map manager";
|
||||
homepage = https://pypi.org/project/smmap2;
|
||||
maintainers = [ ];
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -5754,7 +5754,7 @@ in {
|
|||
|
||||
smmap = callPackage ../development/python-modules/smmap { };
|
||||
|
||||
smmap2 = callPackage ../development/python-modules/smmap2 { };
|
||||
smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
|
||||
|
||||
transaction = callPackage ../development/python-modules/transaction { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue