Skip to content

Commit

Permalink
awesome-slugify: fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Leathers authored and fpletz committed Sep 18, 2017
1 parent 384b644 commit 7fa2c54
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 23 deletions.
30 changes: 30 additions & 0 deletions pkgs/development/python-modules/awesome-slugify/default.nix
@@ -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):
24 changes: 1 addition & 23 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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}";
Expand Down

0 comments on commit 7fa2c54

Please sign in to comment.