python39Packages.dogpile-core: normalise name

This commit is contained in:
Sandro Jäckel 2021-10-28 11:11:08 +02:00
parent 71ed943a86
commit a0dba13ede
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 7 additions and 3 deletions

View File

@ -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; [ ];
};
}

View File

@ -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 { };