awesome-slugify: fixes tests
This commit is contained in:
parent
384b64426e
commit
7fa2c54a60
30
pkgs/development/python-modules/awesome-slugify/default.nix
Normal file
30
pkgs/development/python-modules/awesome-slugify/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, unidecode, regex, python }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "awesome-slugify";
|
||||
version = "1.6.5";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0wgxrhr8s5vk2xmcz9s1z1aml4ppawmhkbggl9rp94c747xc7pmv";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./slugify_filename_test.patch # fixes broken test by new unidecode
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ unidecode regex ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/dimka665/awesome-slugify";
|
||||
description = "Python flexible slugify function";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
diff --git i/slugify/tests.py w/slugify/tests.py
|
||||
index 4c9fa1c..3e14328 100644
|
||||
--- i/slugify/tests.py
|
||||
+++ w/slugify/tests.py
|
||||
@@ -57,7 +57,7 @@ class PredefinedSlugifyTestCase(unittest.TestCase):
|
||||
self.assertEqual(slugify_url('The Über article'), 'uber-article')
|
||||
|
||||
def test_slugify_filename(self):
|
||||
- self.assertEqual(slugify_filename(u'Дrаft №2.txt'), u'Draft_2.txt')
|
||||
+ self.assertEqual(slugify_filename(u'Дrаft №2.txt'), u'Draft_No._2.txt')
|
||||
|
||||
|
||||
class ToLowerTestCase(unittest.TestCase):
|
@ -743,29 +743,7 @@ in {
|
||||
|
||||
python-slugify = callPackage ../development/python-modules/python-slugify { };
|
||||
|
||||
awesome-slugify = buildPythonPackage rec {
|
||||
name = "awesome-slugify-${version}";
|
||||
version = "1.6.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/a/awesome-slugify/${name}.tar.gz";
|
||||
sha256 = "0wgxrhr8s5vk2xmcz9s1z1aml4ppawmhkbggl9rp94c747xc7pmv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ unidecode regex ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.interpreter} -m unittest discover
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/dimka665/awesome-slugify";
|
||||
description = "Python flexible slugify function";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
};
|
||||
awesome-slugify = callPackage ../development/python-modules/awesome-slugify {};
|
||||
|
||||
noise = buildPythonPackage rec {
|
||||
name = "noise-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user