python310Packages.python-slugify: 6.1.1 -> 6.1.2

This commit is contained in:
Fabian Affolter 2022-06-03 01:37:44 +02:00 committed by Jonathan Ringer
parent a9221ef2bf
commit 0af0534fc4
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, text-unidecode , text-unidecode
@ -9,14 +9,16 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-slugify"; pname = "python-slugify";
version = "6.1.1"; version = "6.1.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "un33k";
hash = "sha256-AAAzl/TjFBTpIs5WezpNoozxQ2pT0zLJrutRx9jEaf0="; repo = pname;
rev = "v${version}";
hash = "sha256-JGjUNBEMuICsaClQGDSGX4qFRjecVKzmpPNRUTvfwho=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [