File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 187187 python-novaclient
188188 python-swiftclient
189189 python3Packages
190+ rjsmin
190191 xstatic-angular
191192 xstatic-angular-bootstrap
192193 xstatic-angular-fileupload
798799 } ;
799800 rcssmin = callPackage ./rcssmin.nix { inherit python3Packages ; } ;
800801 reno = callPackage ./reno.nix { inherit python3Packages ; } ;
802+ rjsmin = callPackage ./rjsmin.nix { inherit python3Packages ; } ;
803+
801804 sphinxcontrib-svg2pdfconverter = callPackage ./sphinxcontrib-svg2pdfconverter.nix {
802805 inherit python3Packages ;
803806 } ;
Original file line number Diff line number Diff line change 2525 python-neutronclient ,
2626 python-novaclient ,
2727 python-swiftclient ,
28+ rjsmin ,
2829 xstatic-angular ,
2930 xstatic-angular-bootstrap ,
3031 xstatic-angular-fileupload ,
@@ -130,6 +131,7 @@ python3Packages.buildPythonPackage rec {
130131 python-swiftclient
131132 pyyaml
132133 requests
134+ rjsmin
133135 semantic-version
134136 tzdata
135137 xstatic
Original file line number Diff line number Diff line change 1+ {
2+ fetchPypi ,
3+ python3Packages ,
4+ } :
5+ let
6+ inherit ( python3Packages )
7+ setuptools
8+ pip
9+ ;
10+ in
11+ python3Packages . buildPythonPackage rec {
12+ pname = "rjsmin" ;
13+ version = "1.2.2" ;
14+
15+ pyproject = true ;
16+
17+ nativeBuildInputs = [
18+ setuptools
19+ pip
20+ ] ;
21+
22+ src = fetchPypi {
23+ inherit pname version ;
24+ sha256 = "sha256-jBvNghFD/s8jJCAStV4TYQhAqDnNRns1jxY1kBDWLa4=" ;
25+ } ;
26+ }
You can’t perform that action at this time.
0 commit comments