mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
python39Packages.dogpile-core: normalise name
This commit is contained in:
parent
71ed943a86
commit
a0dba13ede
@ -1,19 +1,23 @@
|
||||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dogpile.core";
|
||||
pname = "dogpile-core";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "dogpile.core";
|
||||
inherit version;
|
||||
sha256 = "0xpdvg4kr1isfkrh1rfsh7za4q5a5s6l2kf9wpvndbwf3aqjyrdy";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "dogpile.core" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A 'dogpile' lock, typically used as a component of a larger caching solution";
|
||||
homepage = "https://bitbucket.org/zzzeek/dogpile.core";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
@ -2257,7 +2257,7 @@ in {
|
||||
|
||||
dogpile-cache = callPackage ../development/python-modules/dogpile-cache { };
|
||||
|
||||
dogpile_core = callPackage ../development/python-modules/dogpile.core { };
|
||||
dogpile-core = callPackage ../development/python-modules/dogpile-core { };
|
||||
|
||||
dogtail = callPackage ../development/python-modules/dogtail { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user